home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
utils
/
rad386
/
makefile
< prev
next >
Wrap
Makefile
|
1992-01-18
|
503b
|
21 lines
SHELL = /bin/sh
all: rad filter preview
rad:
(cd radiosity/src && make -f makefile.ansi);
# (cd radiosity/src && make -f makefile.unix);
filter:
(cd radiosity/scene/filter/src && make);
preview:
(cd radiosity/scene/filter/preview/src && make);
STUFF = radiosity/src\
radiosity/scene/filter/src\
radiosity/scene/filter/preview/src
clean:
(cd radiosity/src && make -f makefile.ansi clean);
(cd radiosity/scene/filter/src && make clean);
(cd radiosity/scene/filter/preview/src && make clean);